const github.com/klauspost/compress/huff0.maxSymbolValue

10 uses

	github.com/klauspost/compress/huff0 (current package)
		compress.go#L460: 	if cap(s.cTable) < maxSymbolValue+1 {
		compress.go#L461: 		s.cTable = make([]cTableEntry, s.symbolLen, maxSymbolValue+1)
		decompress.go#L135: 	if cap(cTable) < maxSymbolValue+1 {
		decompress.go#L136: 		cTable = make([]cTableEntry, 0, maxSymbolValue+1)
		decompress.go#L138: 	cTable = cTable[:maxSymbolValue+1]
		huff0.go#L17: 	maxSymbolValue = 255
		huff0.go#L65: 	count [maxSymbolValue + 1]uint32
		huff0.go#L121: 	huffWeight     [maxSymbolValue + 1]byte
		huff0.go#L127: 		s.prevTable = make(cTable, 0, maxSymbolValue+1)
		huff0.go#L142: 		s.MaxSymbolValue = maxSymbolValue